home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / mac / Mac_Files / Vendor Demos / HiQ / HiQ•Help / HiQ•Help.rsrc / PICT_10303_General Roots pg 3.png < prev    next >
Portable Network Graphic  |  1992-04-28  |  45KB  |  816x1056  |  8-bit (256 colors)
Labels: chat room | monitor | reckoner | sky | web site
OCR: GENERAL ROOT SOLVER SAMPLE SCRIPTS Muller: Example Compute the roots of the function: f(x) (x2 4 13)(x 10) Script Example: project rootFct; local startPoint, fTolerance xTolerance maxlterations; startPoint 1.1 fTolerance xTolerance .0e-8; maxlterations 100; function rootFct(x) return +X- 13*(x 2+10); end function [compRoot] RootMuller(rootFct, startPoint fTolerance xTolerance maxIterations);